home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / Projects / Examples / How To / How to make 1⁄8.-3 < prev    next >
Text File  |  1998-10-26  |  395b  |  23 lines

  1. How to make 1/8.-3 length?
  2.  
  3. It is an error to use dots with divisions. Instead you must expand each
  4. one with get-ratio to get the equivalent ratio, and then you can add
  5. the division.
  6.  
  7. (get-ratio '1/8. :ratio)
  8. --> 3/16
  9.  
  10. Add division:
  11.  
  12. 3/16-3
  13.  
  14. Now it works:
  15.  
  16. (get-ratio '3/16-3 :ratio)
  17. --> 1/16
  18.  
  19. RULES
  20.  
  21. Division and dot can be added to any ratio.
  22. Division cannot be added to a dot, or vice versa.
  23.